Bump version
authorFelix Krull <f_krull@gmx.de>
Thu, 13 Jun 2019 20:07:32 +0000 (22:07 +0200)
committerColin Walters <walters@verbum.org>
Fri, 6 May 2022 16:53:54 +0000 (12:53 -0400)
rust-bindings/rust/Cargo.toml
rust-bindings/rust/README.md

index 3eac8eb4c7f01e00b909521fe6436906e105d1bf..163d592bdef50d8592ba23a58b5a9b5c2b2c900c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "ostree"
-version = "0.3.1"
+version = "0.4.0"
 authors = ["Felix Krull"]
 
 license = "MIT"
index 205599939913a3bb71b7d41a625640a08c45e13d..abb3c1aba657c66f148dffd11ea420ba9e4d5279 100644 (file)
@@ -12,8 +12,9 @@ along with a layer for deploying them and managing the bootloader configuration.
 > **Note**: this crate was renamed from the `libostree` crate.
 
 ## Status
-The bindings are quite incomplete right now. Most of it can be autogenerated,
-but I simply turned on what I needed and left the rest for later.
+Most bindings that can be auto-generated are being auto-generated by now.
+Anything that is not yet supported by the crate probably requires handwritten
+bindings. These will most likely be added on an as-needed basis.
 
 ## Using
 
@@ -30,7 +31,7 @@ To use the crate, add it to your `Cargo.toml`:
 
 ```toml
 [dependencies]
-ostree = "0.3"
+ostree = "0.4"
 ```
 
 To use features from later libostree versions, you need to specify the release
@@ -38,7 +39,7 @@ version as well:
 
 ```toml
 [dependencies.ostree]
-version = "0.3"
+version = "0.4"
 features = ["v2018_7"]
 ```